home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
tcb100t.arc
/
WINDOWS.H
< prev
next >
Wrap
Text File
|
1988-03-05
|
2KB
|
40 lines
/****************************************************************************
* windows.h *
* *
* Basic window header for the C Tool Box. This header contains the *
* box type definition structure. *
* *
* *
* Copyright (c) 1987 *
* David A. Miller *
* Unicorn Software *
* *
****************************************************************************/
typedef struct
{
int hlchar;
int vlchar;
int ulchar;
int urchar;
int llchar;
int lrchar;
int bfore; /* border foreground color */
int bback; /* border background color */
int ffore; /* foreground fill color */
int fback; /* background fill color */
int row; /* upper left corner row */
int col; /* upper left corner column */
int height; /* height of box in rows */
int width; /* width of box in characters */
unsigned *crt; /* location of saved widow background */
} BOX ;
BOX *makebox(), *copybox();